home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20021006-20030409 / 000242_fdc@columbia.edu_Fri Jan 24 11:59:25 EST 2003.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  45 lines

  1. Article: 14034 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: File transfer / IP
  6. Date: 24 Jan 2003 11:59:12 -0500
  7. Organization: Columbia University
  8. Lines: 28
  9. Message-ID: <b0rrd0$d9n$1@watsol.cc.columbia.edu>
  10. References: <3e316067.28046498@news.ision.net.uk>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1043427555 22179 128.59.39.139 (24 Jan 2003 16:59:15 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 24 Jan 2003 16:59:15 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14034
  16.  
  17. In article <3e316067.28046498@news.ision.net.uk>,
  18. Rob S  <robatworkGETRIDOFTHESESIXWORDS@mail.com> wrote:
  19.  
  20. : I'd appreciate a few pointers to get me started with the following:
  21. : Currently we transfer file between PCs connecting via serial or modem by
  22. : putting one into server mode on the relevant serial port and at the other
  23. : doing something like:
  24. : set port COM1
  25. : set speed 57600
  26. : GET /RECV1.DAT
  27. : etc.
  28. : If we now connect the PCs via ethernet and TCPIP instead so they can see
  29. : each other with addresses of say 192.168.0.1 and 192.168.0.2, how would I go
  30. : about transferring files with kermit? Are there similar server and port mode
  31. : commands for IP?
  32. Sure; Kermit works the same on network connections, except you make the
  33. connection differently: SET HOST instead of SET PORT; SET HOST * xxx to wait
  34. for an incoming conneciton on port xxx.  The exact syntax depends on the
  35. specific Kermit program.  See the tutorials:
  36.  
  37.   http://www.columbia.edu/kermit/ckututor.html  C-Kermit Tutorial
  38.   http://www.columbia.edu/kermit/k95tutor.html  Kermit 95 Tutorial
  39.  
  40. - Frank
  41.